home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / lib / partman / active_partition / 10change_name / choices next >
Encoding:
Text File  |  2009-04-19  |  337 b   |  21 lines

  1. #!/bin/sh
  2.  
  3. . /lib/partman/lib/base.sh
  4.  
  5. dev=$1
  6. id=$2
  7. cd $dev
  8.  
  9. open_dialog  USES_NAMES
  10. read_line x
  11. close_dialog
  12.  
  13. if [ "$x" = yes ]; then
  14.     open_dialog PARTITION_INFO $id
  15.     read_line x1 id x3 x4 x5 x6 old_name
  16.     close_dialog
  17.     db_metaget partman-partitioning/text/set_name description
  18.     printf "setname\t%s\${!TAB}%s\n" "${RET}" "$old_name"
  19. fi
  20.  
  21.